317d0da0a5917c5840984ac5a178542a20ef3a89,src/org/opencms/workplace/CmsExplorer.java,CmsExplorer,getFileList,#,211

Before Change


            if (showTitle) {
                String title = "";
                try {
                    title = getCms().readProperty(getCms().readAbsolutePath(res), I_CmsConstants.C_PROPERTY_TITLE);
                } catch (CmsException e) {
                    // ignore
                }

After Change


            if (showTitle) {
                String title = "";
                try {
                    title = getCms().readPropertyObject(getCms().readAbsolutePath(res), I_CmsConstants.C_PROPERTY_TITLE, false).getValue();
                } catch (CmsException e) {
                    // ignore
                }